Typical Usage:
The typical usage of this bean shows how to send data into slave. If the SendChar method returns ERR_OK, the transmission was successful.
MAIN.C #define Slave 0x80 void main(void) { : /* Set slave address */ (void)EI2C1_SelectSlave(Slave); /* Send character */ while(EI2C1_SendChar(65) != ERR_OK); : }